home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Serious Demos / XTension demo / XTension manual 2.0 / XTension manual 2.0.rsrc / TEXT_158.txt < prev    next >
Text File  |  1998-07-18  |  2KB  |  47 lines

  1.  
  2. Other Verbs  -- Not your ordinary kind of verb...
  3.  
  4. Execute another Script :
  5.  
  6. execute script: Execute a global script
  7.  execute script  string  -- script name
  8.     [in  integer]  -- delay in seconds
  9.     example :  execute script "Call 911" in 3 * minutes
  10.  
  11. This verb allows any script to execute any other script.  Note that either the script or an alias for the script must be in the 'Scripts' folder in the XTension home folder.
  12. As with some other verbs, you may use the delayed option :  "IN"
  13.  
  14. Enable or Disable the Serial Port:
  15.  
  16. set port  : true/false
  17.     set port   boolean   true or false
  18.  
  19. This verb is used to enable or disable the serial port.  It is not normally necessary, and very definitely a verb for someone who knows what they are doing...  Sometimes this verb is used in 'plug-ins' which are specifically meant to correct some problem with the version of XTension that you have... hopefully not often?
  20.  
  21. Send serial data:
  22.  
  23. send data: Send raw data out the serial port
  24.  send data  string  -- Data to send
  25.     example :  send data "+++ATDT911"
  26.  
  27. This function is for troubleshooting and special serial port commands which are not supported by XTension   The data to send is unrestricted, but obviously must make sense to some device which is connected to the serial port.
  28.  
  29. Please notice that you can use one of several serial port AppleScript Additions to send and receive from another serial port ( one that
  30. XTension is not using ).  One is called "CTB" Comm Tool Box...
  31.  
  32. Change the name or address of a unit from a script :
  33.  
  34. set name of : Rename a unit 
  35.     set name of  string
  36.         to  string
  37.  
  38. This verb allows you to change the name of a unit from within a script.  It is a dangerous verb in that you can use it to really do some nasty things to yourself.  If you don't know that you need it, don't use it.
  39.  
  40. set address of : Change the address of a unit 
  41.     set address of  string  (house code/unit)
  42.         to  string
  43.  
  44. This verb allows you to change the address of a unit from within a script.  It is a dangerous verb in that you can use it to really do some nasty things to yourself.  If you don't know that you need it, don't use it.
  45.  
  46.  
  47.